/*media*/
#media-section{
  width: 98%;
  margin: 0 auto;
  max-width: 1920px;
  background-color: #f6f4f0;
  padding: 3.125rem 1%;
  text-align: center;
}

.media-title{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #2F5E4E;
  margin-bottom: 1.875rem;
  letter-spacing: 0.08rem;
}

#player-container{
  margin-top: 1.25rem;
}

#custom-play{
  background: #333;
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

#custom-play:hover{
  background: #555;
}

#equalizer{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}

.bar-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1.125rem;
}

.bar{
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: 2.5rem;
}

.block{
  width: 100%;
  height: 0.3125rem;
  background: #333;
  margin: 0.0625rem 0;
  opacity: 0.2;
}

.block.green{
  background: green;
}

.block.yellow{
  background: yellow;
}

.block.orange{
  background: orange;
}

.block.red{
  background: red;
}

.hz-label{
  font-size: 	0.5625rem;
  color: #aaa;
  margin-top: 0.25rem;
  text-align: center;
}

/* TV-frame binnen bestaande layout */
.tv-frame{
  width: 75%;
  max-width: 100%;
  background: #333;
  border: 3px solid #555;
  border-radius: 12px;
  padding: 1rem;
  margin: 0 12.5% 3.125rem 12.5%;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.6);
  position: relative;
  box-sizing: border-box;
}

/* TV-scherm met verhouding */
.tv-screen{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  border: 2px solid #222;
  border-radius: 8px;
  overflow: hidden;
}

/* Video vult het scherm */
.video-wrapper{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* media query's voor de allerkleinste schermpjes*/
@media screen and (max-width: 390px){

}
/* Einde media query's voor de allerkleinste schermpjes*/

/* begin standaard media query's*/
@media screen and (max-width: 700px){
  .media-title{
    font-size: 1.2rem;
  }

  .modal-content{
    width: 75%;
    max-width: 400px;
  }

  .bar-container{
    width: 0.75rem;
  }

  .hz-label{
    font-size: 0.4375rem;
  }

  #custom-play{
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .tv-frame{
    width: 95%;
    margin: 0 auto;
    padding: 0 0 3.125rem 0;
    border-radius: 8px;
    margin-bottom: 3.125rem;
  }

  .tv-screen{
    aspect-ratio: 16 / 9;
    border-radius: 6px;
  }
}

@media screen and (min-width: 701px) and (max-width: 800px){
  .media-title{
    font-size: 1.2rem;
  }

  #custom-play{
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

@media screen and (min-width: 801px) and (max-width: 1300px){
  .media-title{
    font-size: 1.2rem;
  }

  #custom-play{
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}
/* Einde media queries */
